home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Applications / SeeMovieRun 2.0 / Headers / CEBCollaborator.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-01  |  697 b   |  31 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CEBCollaborator.h
  3.  
  4.         Interface for EBCollaborator class - the Event Broadcaster.
  5.         
  6.     SUPERCLASS = CCollaborator
  7.     
  8.     Copyright © 1992 Joe Zobkiw. All rights reserved.
  9.  
  10.     Copyright © 1995 Gregory Bonk. All rights reserved.
  11.         Changes upgrade to TPM 7.0.7
  12.  ******************************************************************************/
  13.  
  14. #pragma once
  15.  
  16. #include "CCollaborator.h"
  17.  
  18.  
  19. // Reasons
  20. #define kEventRecordReason    1    
  21.  
  22. class CEBCollaborator : public CCollaborator
  23. {
  24. public:    TCL_DECLARE_CLASS
  25.  
  26. CEBCollaborator(void);
  27. ~CEBCollaborator(void);
  28.  
  29.     void IEBCollaborator (void);
  30.     void BroadcastEvent(EventRecord *macEvent);
  31. };